home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-10-10 | 2.4 KB | 107 lines | [TEXT/edF6] |
- ***For PowerFantasm
-
- **Bugs to lightsoft@zedworld.demon.co.uk
- **Thank you
- **V4.11 - Oct. 1996
-
- maxSize EQU $800000 **Max data block size is 8 megabytes
- defaultPhysicalEntryCount EQU 8
- **values returned from the GetPageState function
- kPageInMemory EQU 0
- kPageOnDisk EQU 1
- kNotPaged EQU 2
-
- **masks for Zone->heapType field
- k32BitHeap EQU 1 *valid in all Memory Managers
- kNewStyleHeap EQU 2 *true if new Heap Manager is present
- kNewDebugHeap EQU 4 *true if new Heap Manager is running in debug mode on this heap
-
- if PPC
- IMPORT GetApplLimit
- IMPORT SystemZone
- IMPORT ApplicationZone
- IMPORT GZSaveHnd
- IMPORT TopMem
- IMPORT MemError
- IMPORT GetZone
- IMPORT NewHandle
- IMPORT NewHandleSys
- IMPORT NewHandleClear
- IMPORT NewHandleSysClear
- IMPORT HandleZone
- IMPORT RecoverHandle
- IMPORT RecoverHandleSys
- IMPORT NewPtr
- IMPORT NewPtrSys
- IMPORT NewPtrClear
- IMPORT NewPtrSysClear
- IMPORT PtrZone
- IMPORT MaxBlock
- IMPORT MaxBlockSys
- IMPORT StackSpace
- IMPORT NewEmptyHandle
- IMPORT NewEmptyHandleSys
- IMPORT HLock
- IMPORT HUnlock
- IMPORT HPurge
- IMPORT HNoPurge
- IMPORT HLockHi
- IMPORT TempNewHandle
- IMPORT TempMaxMem
- IMPORT TempFreeMem
- IMPORT TempHLock
- IMPORT TempHUnlock
- IMPORT TempDisposeHandle
- IMPORT TempTopMem
- IMPORT InitApplZone
- IMPORT SetZone
- IMPORT CompactMem
- IMPORT CompactMemSys
- IMPORT PurgeMem
- IMPORT PurgeMemSys
- IMPORT FreeMem
- IMPORT FreeMemSys
- IMPORT ReserveMem
- IMPORT ReserveMemSys
- IMPORT MaxMem
- IMPORT MaxMemSys
- IMPORT SetGrowZone
- IMPORT SetApplLimit
- IMPORT MoveHHi
- IMPORT DisposePtr
- IMPORT SetPtrSize
- IMPORT DisposeHandle
- IMPORT SetHandleSize
- IMPORT InlineGetHandleSize
- IMPORT GetHandleSize *v4.11
- IMPORT ReallocateHandle
- IMPORT EmptyHandle
- IMPORT HSetRBit
- IMPORT HClrRBit
- IMPORT MoreMasters
- IMPORT BlockMove
- IMPORT BlockMoveData
- IMPORT HGetState
- IMPORT HSetState
- IMPORT SetApplBase
- IMPORT MaxApplZone
- IMPORT HoldMemory
- IMPORT UnholdMemory
- IMPORT LockMemory
- IMPORT LockMemoryContiguous
- IMPORT UnlockMemory
- IMPORT DeferUserFn
- IMPORT DebuggerGetMax
- IMPORT DebuggerEnter
- IMPORT DebuggerExit
- IMPORT DebuggerPoll
- IMPORT GetPageState
- IMPORT PageFaultFatal
- IMPORT DebuggerLockMemory
- IMPORT DebuggerUnlockMemory
- IMPORT EnterSupervisorMode
- IMPORT PtrToXHand
- IMPORT HandAndHand
- IMPORT PtrAndHand
- ENDIF
-